@charset "utf-8";
/*        /* ------SEARCH BOX ----------      */


#searchForm {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 50px;
    height: 50px;
    background: #3ab49d;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid #F0EBA4;
    padding-top: 1px;
    padding-right: 1px;
    padding-left: 1px;
    padding-bottom: 1px;
    align-items: center;
    margin-top: -27px;
    position: relative;
}
.shipping {
    color: #084D2E;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    font-size: large;
    width: 100%;
  }  

.customSelect   {
    width: 58%;
}
.fieldset1 .customSelect  {
    width: 42em;
    margin-left: 33px;
}

#searchForm input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;;
    height: 42.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    display: none;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
    -moz-appearance: none;/* older firefox */
    -webkit-appearance: none; /* safari, chrome, edge and ie mobile */
    appearance: none;
}


.fa {
    box-sizing: border-box;
    padding: 10px;
    width: 42.5px;
    height: 42.5px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.2em;
    transition: all 1s;
    cursor: pointer;
}

.fa:before {
    font-family: "Font Awesome 5 Free";
    content: "\f002";
    font-weight: 900;
}

#searchForm:hover {
    width: 80%;
    cursor: pointer;
}

#searchForm:hover input {
    display: block;
    border: solid 3px #3ab49d;
}

#searchForm:hover .fa {
    background: #3ab49d;
    color: white;
}

/* switch icon to arrow*/
 #searchForm:hover .fa:before {
    content: "\f061";
}

@media screen and (min-width:460px) {
    #searchForm:hover{
    width: 290px;
    }
/*        /* ------SEARCH BOX ----------      */


#searchForm {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 50px;
    height: 50px;
    background: #3ab49d;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid #F0EBA4;
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 28px;
}

/*        /* ------SEARCH BOX ----------      */


#searchForm {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 50px;
    height: 50px;
    background: #3ab49d;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid #F0EBA4;
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 19px;
    margin-bottom: -13px;
}
	

}

/* special fix for firefox only, the positioning of the search element is too high */
@-moz-document url-prefix() {
    #searchForm {
        margin-top: 5px;
    }
}

@-moz-document url-prefix() {
    @media screen and (min-width:600px) {
        #searchForm {
            margin-top: 32px;
            margin-bottom: -25px;
        }
    }
}



/* fix to style button on mobile */
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 4px;
}

 
 
/* special fix for firefox only, the positioning of the search element is too high */
@-moz-document url-prefix() {
	#searchForm {
		margin-top: 5px;
	}
}
@-moz-document url-prefix() {
	@media screen and (min-width: 600px) {
		#searchForm {
			margin-top: 32px;
			margin-bottom: -25px;
		}
	}
}
/* fix for unwanted movement. We load it here on the body and when the page is loaded we remove the class of preload from the body tag with some JS */
.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
}
/* for unwanted movement on page resize */
.resize-animation-stopper * {
	animation: none !important;
	transition: none !important;
}
 /*small images for new products on single product page */
 .small-img-group{
    display: flex;
    justify-content: space-between;
 }
 
 .small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}

.single-product input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

 .single-product input:focus{
    outline: none;
 }
 
.newproduct{
    flex-basis: 20%;
    cursor: pointer;
    margin-bottom: 2rem;
}

.newproduct img{
    transition: 0.3s all;
}

.newproduct:hover img{
    opacity: 0.7;
}